跳到主要内容

C++ 指向数组的指针是迭代器

int *p = arr;  
++p;

为了获取尾后指针,我们需要:

int *e = &arr[10]

也即用不存在的元素初始化 e。